翻訳と辞書
Words near each other
・ DIVI Translation
・ Divi-Dead
・ Diviacka Nová Ves
・ Diviaky nad Nitricou
・ Diviana
・ Diviciacus
・ Diviciacus (Aedui)
・ Diviciacus (Suessiones)
・ Divicine
・ Diviciori River
・ Divico
・ Divide
・ Divide and choose
・ Divide and conquer
・ Divide and Conquer (film)
Divide and conquer algorithms
・ Divide and Exit
・ Divide and rule
・ Divide and Rule (collection)
・ Divide and Rule (short story)
・ Divide By Zero (company)
・ Divide County Courthouse
・ Divide County Museum
・ Divide County, North Dakota
・ Divide Creek
・ Divide Independent School District
・ Divide Mountain
・ Divide Peaks
・ Divide Pictures
・ Divide the Blackened Sky


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Divide and conquer algorithms : ウィキペディア英語版
Divide and conquer algorithms
In computer science, divide and conquer (D&C) is an algorithm design paradigm based on multi-branched recursion. A divide and conquer algorithm works by recursively breaking down a problem into two or more sub-problems of the same (or related) type (divide), until these become simple enough to be solved directly (conquer). The solutions to the sub-problems are then combined to give a solution to the original problem.
This divide and conquer technique is the basis of efficient algorithms for all kinds of problems, such as sorting (e.g., quicksort, merge sort), multiplying large numbers (e.g. Karatsuba), syntactic analysis (e.g., top-down parsers), and computing the discrete Fourier transform (FFTs).
Understanding and designing D&C algorithms is a complex skill that requires a good understanding of the nature of the underlying problem to be solved. As when proving a theorem by induction, it is often necessary to replace the original problem with a more general or complicated problem in order to initialize the recursion, and there is no systematic method for finding the proper generalization. These D&C complications are seen when optimizing the calculation of a Fibonacci number with efficient double recursion.
The correctness of a divide and conquer algorithm is usually proved by mathematical induction, and its computational cost is often determined by solving recurrence relations.
== Decrease and conquer ==
The name "divide and conquer" is sometimes applied also to algorithms that reduce each problem to only one sub-problem, such as the binary search algorithm for finding a record in a sorted list (or its analog in numerical computing, the bisection algorithm for root finding).〔Thomas H. Cormen, Charles E. Leiserson, and Ronald L. Rivest, ''Introduction to Algorithms'' (MIT Press, 2000).〕 These algorithms can be implemented more efficiently than general divide-and-conquer algorithms; in particular, if they use tail recursion, they can be converted into simple loops. Under this broad definition, however, every algorithm that uses recursion or loops could be regarded as a "divide and conquer algorithm". Therefore, some authors consider that the name "divide and conquer" should be used only when each problem may generate two or more subproblems.〔Brassard, G. and Bratley, P. Fundamental of Algorithmics, Prentice-Hall, 1996.〕 The name decrease and conquer has been proposed instead for the single-subproblem class.〔Anany V. Levitin, ''Introduction to the Design and Analysis of Algorithms'' (Addison Wesley, 2002).〕
An important application of decrease and conquer is in optimization, where if the search space is reduced ("pruned") by a constant factor at each step, the overall algorithm has the same asymptotic complexity as the pruning step, with the constant depending on the pruning factor (by summing the geometric series); this is known as prune and search.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Divide and conquer algorithms」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.